home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Info / TeachU14 / SAMS / Code / Day06 / pvabout.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-08  |  939 b   |  29 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef PVAboutH
  3. #define PVAboutH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\Buttons.hpp>
  10. #include <vcl\ExtCtrls.hpp>
  11. //---------------------------------------------------------------------------
  12. class TAboutBox : public TForm
  13. {
  14. __published:    // IDE-managed Components
  15.     TLabel *Label1;
  16.     TLabel *Label2;
  17.     TLabel *Label3;
  18.     TImage *Image1;
  19.     TBevel *Bevel1;
  20.     TBitBtn *BitBtn1;
  21. private:    // User declarations
  22. public:        // User declarations
  23.     __fastcall TAboutBox(TComponent* Owner);
  24. };
  25. //---------------------------------------------------------------------------
  26. extern PACKAGE TAboutBox *AboutBox;
  27. //---------------------------------------------------------------------------
  28. #endif
  29.